diff --git a/Company.Domain/CheckoutAgg/ICheckoutRepository.cs b/Company.Domain/CheckoutAgg/ICheckoutRepository.cs index 618cb792..eb541857 100644 --- a/Company.Domain/CheckoutAgg/ICheckoutRepository.cs +++ b/Company.Domain/CheckoutAgg/ICheckoutRepository.cs @@ -25,7 +25,7 @@ public interface ICheckoutRepository : IRepository Task CreateCkeckout(Checkout command); Task GetContractResultToCreateCheckout(long workshopId, string year, string month, string contractStart, string contractEnd, long employeeId); - void CreateCkeckout(Checkout command); + //void CreateCkeckout(Checkout command); diff --git a/CompanyManagment.EFCore/Repository/CheckoutRepository.cs b/CompanyManagment.EFCore/Repository/CheckoutRepository.cs index 4b7b45f6..6a0394bb 100644 --- a/CompanyManagment.EFCore/Repository/CheckoutRepository.cs +++ b/CompanyManagment.EFCore/Repository/CheckoutRepository.cs @@ -123,14 +123,14 @@ public class CheckoutRepository : RepositoryBase, ICheckoutRepos .FirstOrDefault(x => x.Id == id); } - public async Task CreateCkeckout(Checkout command) + public Task GetContractResultToCreateCheckout(long workshopId, string year, string month, string contractStart, string contractEnd, long employeeId) { throw new NotImplementedException(); } - public void CreateCkeckout(Checkout command) + public async Task CreateCkeckout(Checkout command) { var creationDates = DateTime.Now;