API
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

PlaceHolderFormatRepository.cs 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using UnivateProperties_API.Context;
  6. using UnivateProperties_API.Model.Misc;
  7. namespace UnivateProperties_API.Repository.Misc
  8. {
  9. public class PlaceHolderFormatRepository : IRepository<PlaceHolderFormat>
  10. {
  11. private readonly DataContext dBContext;
  12. public PlaceHolderFormatRepository(DataContext _dataContext)
  13. {
  14. dBContext = _dataContext;
  15. }
  16. public List<PlaceHolderFormat> Get(Func<PlaceHolderFormat, bool> where)
  17. {
  18. throw new NotImplementedException();
  19. }
  20. public List<PlaceHolderFormat> GetAll()
  21. {
  22. return dBContext.PlaceHolderFormats.ToList();
  23. }
  24. public PlaceHolderFormat GetDetailed(Func<PlaceHolderFormat, bool> first)
  25. {
  26. throw new NotImplementedException();
  27. }
  28. public List<PlaceHolderFormat> GetDetailedAll()
  29. {
  30. throw new NotImplementedException();
  31. }
  32. public void Insert(PlaceHolderFormat item)
  33. {
  34. throw new NotImplementedException();
  35. }
  36. public void Insert(IEnumerable<PlaceHolderFormat> items)
  37. {
  38. throw new NotImplementedException();
  39. }
  40. public int NewId()
  41. {
  42. throw new NotImplementedException();
  43. }
  44. public void Remove(PlaceHolderFormat item)
  45. {
  46. throw new NotImplementedException();
  47. }
  48. public void Remove(IEnumerable<PlaceHolderFormat> items)
  49. {
  50. throw new NotImplementedException();
  51. }
  52. public void RemoveAtId(int item)
  53. {
  54. throw new NotImplementedException();
  55. }
  56. public void Save()
  57. {
  58. throw new NotImplementedException();
  59. }
  60. public void Update(PlaceHolderFormat item)
  61. {
  62. throw new NotImplementedException();
  63. }
  64. }
  65. }