create change
This commit is contained in:
@@ -25,7 +25,7 @@ public interface ICheckoutRepository : IRepository<long, Checkout>
|
||||
Task CreateCkeckout(Checkout command);
|
||||
Task<CreateCheckout> GetContractResultToCreateCheckout(long workshopId, string year, string month,
|
||||
string contractStart, string contractEnd, long employeeId);
|
||||
void CreateCkeckout(Checkout command);
|
||||
//void CreateCkeckout(Checkout command);
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -123,14 +123,14 @@ public class CheckoutRepository : RepositoryBase<long, Checkout>, ICheckoutRepos
|
||||
.FirstOrDefault(x => x.Id == id);
|
||||
}
|
||||
|
||||
public async Task CreateCkeckout(Checkout command)
|
||||
|
||||
public Task<CreateCheckout> 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;
|
||||
|
||||
Reference in New Issue
Block a user