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

13 lines
333 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 IPaymentToEmployeeItemApplication
{
OperationResult Create(CreatePaymentToEmployeeItem command);
}