OnlineSalesAutoCrop/Api/OnlineSalesAutoCrop.CoreAPI.Services/Contracts/Systems/IThisSystemService.cs
2026-06-14 12:46:29 +06:00

16 lines
519 B
C#

using OnlineSalesAutoCrop.CoreAPI.Models.Requests.Systems;
using OnlineSalesAutoCrop.CoreAPI.Models.Responses.Systems;
using System.Threading.Tasks;
namespace OnlineSalesAutoCrop.CoreAPI.Services.Contracts.Systems
{
public interface IThisSystemService
{
Task<bool> SaveAsync(ThisSystemRequest request, string ipAddress, int modifiedBy);
Task<bool> SaveWOTermsAsync(WOTermsRequest request, string ipAddress, int savedBy);
Task<ThisSystemResponse> GetAsync();
Task<WOTermsResponse> GetWOTermsAsync();
}
}