Files
Backend-Api/CompanyManagment.App.Contracts/PaymentToEmployee/IPaymentToEmployeeApplication.cs
2024-07-05 21:36:15 +03:30

20 lines
631 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using _0_Framework.Application;
namespace CompanyManagment.App.Contracts.PaymentToEmployee;
public interface IPaymentToEmployeeApplication
{
OperationResult Create(CreatePaymentToEmployee command);
OperationResult Edit(EditPaymentToEmployee command);
List<PaymentToEmployeeViewModel> searchClient(PaymentToEmployeeSearchModel searchModel);
OperationResult RemovePaymentItem(long id);
List<PaymentToEmployeePrintViewModel> PrintAll(PaymentToEmployeeSearchModel searchModel);
}