Исправление недачетов в операциях
This commit is contained in:
parent
736b16822b
commit
57651f249a
@ -6,7 +6,7 @@ public interface ITypeJobRepositories
|
||||
{
|
||||
IEnumerable<TypeJob> ReadTypeJobs(int? productId = null, int? developId = null, int? managerId = null);
|
||||
|
||||
void CreateTypeJob(TypeJob typeJobReplenishment);
|
||||
void CreateTypeJob(TypeJob typeJob);
|
||||
|
||||
void DeleteTypeJob(int id);
|
||||
}
|
||||
|
@ -8,5 +8,5 @@ public interface IVacationRepositories
|
||||
DateTime? endDateFrom = null, DateTime? endtDateTo = null,
|
||||
int? employeeId = null);
|
||||
|
||||
void CreateVacation(Vacation vacationReplenishment);
|
||||
void CreateVacation(Vacation vacation);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@ namespace Accounting_Time_It_Company.Repositories.Implementations;
|
||||
|
||||
public class TypeJobRepositories : ITypeJobRepositories
|
||||
{
|
||||
public void CreateTypeJob(TypeJob feedReplenishment)
|
||||
public void CreateTypeJob(TypeJob typeJob)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -4,7 +4,7 @@ namespace Accounting_Time_It_Company.Repositories.Implementations;
|
||||
|
||||
public class VacationRepositories : IVacationRepositories
|
||||
{
|
||||
public void CreateVacation(Vacation vacationReplenishment)
|
||||
public void CreateVacation(Vacation vacation)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user