| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- using Microsoft.Extensions.Logging;
- using Quadarax.Application.QLiberace.Base.Repositories;
- using Quadarax.Application.QLiberace.Customer.Dtos;
- using Quadarax.Application.QLiberace.Customer.Enums;
- using Quadarax.Application.QLiberace.Customer.Repositories;
- using Quadarax.Foundation.Core.Business;
- using Quadarax.Foundation.Core.Data.Interface.Domain;
- using Quadarax.Foundation.Core.Data.Interface.Entity.Dto;
- namespace Quadarax.Application.QLiberace.Customer.Services
- {
- public class CustomerService : AbstractMultiRepositoryService<RepoCustomer,RepoContact, RepoUser>
- {
- #region *** Constructor ***
- public CustomerService(RepoCustomer repository1, RepoContact repository2, RepoUser repository3, IContext currentContext, ILoggerFactory logger) : base(repository1, repository2, repository3, currentContext, logger)
- {
- }
- #endregion
- #region *** Public operations ***
- #region **** Customer ****
- public ResultValueDto<CustomerRDto?> AddCustomer(CustomerWDto customer)
- {
- throw new NotImplementedException();
- }
- public ResultDto UpdateCustomer(string customerCode, CustomerWDto customer)
- {
- throw new NotImplementedException();
- }
- public ResultDto DeleteCustomer(long customerId)
- {
- throw new NotImplementedException();
- }
- public ResultValueDto<CustomerRDto?> GetCustomer(string customerCode)
- {
- throw new NotImplementedException();
- }
- public ResultValueDto<CustomerRDto?> GetCustomer(long customerId)
- {
- throw new NotImplementedException();
- }
- public ResultBoolDto ExistsCustomer(string customerCode)
- {
- throw new NotImplementedException();
- }
- #endregion
- #region **** User Assignments ****
- public ResultDto AssignUser(string customerCode, string userLogin)
- {
- throw new NotImplementedException();
- }
- public ResultDto UnAssignUser(string customerCode, string userLogin)
- {
- throw new NotImplementedException();
- }
- #endregion
- #region **** Customer Constacts ****
- public ResultValueDto<ContactRDto?> AddContact(string customerCode, ContactWDto contact)
- {
- throw new NotImplementedException();
- }
- public ResultDto UpdateContact(string customerCode, ContactWDto contact)
- {
- throw new NotImplementedException();
- }
- public ResultDto DeleteContact(long contactId)
- {
- throw new NotImplementedException();
- }
- public ResultValueDto<ContactRDto?> GetContact(long contactId)
- {
- throw new NotImplementedException();
- }
- public ResultsValueDto<ContactRDto?> GetContacts(string customerCode)
- {
- throw new NotImplementedException();
- }
- public ResultsValueDto<ContactRDto?> GetPreferredContacts(string customerCode, params ContactTypeEnum[] contactTypes)
- {
- throw new NotImplementedException();
- }
- public ResultDto ValidateContacts(string customerCode)
- {
- throw new NotImplementedException();
- }
- #endregion
- #endregion
- }
- }
|