45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using EmployeeManagmentContracts.SearchModels;
|
|
using EmployeeManagmentContracts.StoragesContracts;
|
|
using EmployeeManagmentContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EmployeeManagmentDataBaseImplement.Implements
|
|
{
|
|
public class VacationStorage : IVacationStorage
|
|
{
|
|
public void Delete(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public VacationViewModel? GetElement(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<VacationViewModel> GetFilteredList(VacationSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<VacationViewModel> GetFullList()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Insert(VacationViewModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Update(VacationViewModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|