EnumerationService.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using qdr.app.bundleboiler.business.Services.Interfaces;
  2. using qdr.app.bundleboiler.data.Dtos;
  3. using qdr.app.bundleboiler.data.Model;
  4. using qdr.app.bundleboiler.data.Repositories;
  5. using Quadarax.Foundation.Core.Attributes;
  6. using Quadarax.Foundation.Core.Data;
  7. using Quadarax.Foundation.Core.Data.Interface.Entity.Dto;
  8. using Quadarax.Foundation.Core.Logging;
  9. namespace qdr.app.bundleboiler.business.Services
  10. {
  11. [DiModule]
  12. [DiImplementsOf(typeof(IEnumerationService), LifeCycleTypeEnum.Scoped)]
  13. public class EnumerationService : BaseService<EnumerationRepo>, IEnumerationService
  14. {
  15. public EnumerationService(EnumerationRepo repository, IOptions options, ILogger logger) : base(repository, options, logger)
  16. {
  17. }
  18. public ResultBoolDto Contains(EnumClassType type, string code)
  19. {
  20. throw new NotImplementedException();
  21. }
  22. public ResultValueDto<EnumerationDto> Create(EnumerationDto dto)
  23. {
  24. throw new NotImplementedException();
  25. }
  26. public ResultBoolDto Delete(long id)
  27. {
  28. throw new NotImplementedException();
  29. }
  30. public ResultValueDto<EnumerationDto> Get(long id)
  31. {
  32. throw new NotImplementedException();
  33. }
  34. public ResultValueDto<EnumerationDto> Get(EnumClassType type, string code)
  35. {
  36. throw new NotImplementedException();
  37. }
  38. public ResultsValueDto<EnumerationDto> GetAll(IPaging page, params EnumClassType[]? classes)
  39. {
  40. throw new NotImplementedException();
  41. }
  42. public ResultValueDto<EnumerationDto> Update(EnumerationDto dto)
  43. {
  44. throw new NotImplementedException();
  45. }
  46. }
  47. }