20 lines
631 B
C#
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);
|
|
} |