PIbd-42_Kashin_M.I_CPO_Cour.../EmployeeManagmentDataBaseImplement/Implements/VacationStorage.cs
maksim 1ddd362ab7 Добавлены все файлы.
В некоторых файлах, основанных на интерфейсах, стоят заглушки.
Создана несколько экранов, которые также являются заглушками.
2024-11-12 22:10:44 +04:00

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 : ISalaryStorage
{
public void Delete(int id)
{
throw new NotImplementedException();
}
public SalaryViewModel? GetElement(int id)
{
throw new NotImplementedException();
}
public List<SalaryViewModel> GetFilteredList(SalarySearchModel model)
{
throw new NotImplementedException();
}
public List<SalaryViewModel> GetFullList()
{
throw new NotImplementedException();
}
public void Insert(SalaryViewModel model)
{
throw new NotImplementedException();
}
public void Update(SalaryViewModel model)
{
throw new NotImplementedException();
}
}
}