20 lines
490 B
C#
20 lines
490 B
C#
using SchoolContracts.BindingModel;
|
|
using SchoolContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IEmploeeLogic
|
|
{
|
|
List<ExpenseViewModel> Read(EmployeeBindingModel model);
|
|
ExpenseViewModel Check(EmployeeBindingModel model);
|
|
void CreateOrUpdate(EmployeeBindingModel model);
|
|
void Delete(EmployeeBindingModel model);
|
|
|
|
}
|
|
}
|