using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using TransportCompanyContracts.BindingModels; using TransportCompanyContracts.BusinessLogicsContracts; using TransportCompanyContracts.SearchModels; using TransportCompanyContracts.ViewModels; namespace TransportCompanyBusinessLogic.BusinessLogic { public class ClientLogic : IClientLogic { private readonly ILogger _logger; public ClientViewModel? ReadElement(ClientSearchModel model) { throw new NotImplementedException(); } public List? ReadList(ClientSearchModel? model) { throw new NotImplementedException(); } public bool Create(ClientBindingModel model) { throw new NotImplementedException(); } public bool Update(ClientBindingModel model) { throw new NotImplementedException(); } public bool Delete(ClientBindingModel model) { throw new NotImplementedException(); } } }