11 lines
373 B
C#
11 lines
373 B
C#
using Marco.Pms.Model.Utilities;
|
|
|
|
namespace Marco.Pms.Services.Service.ServiceInterfaces
|
|
{
|
|
public interface ITenantService
|
|
{
|
|
Task<ApiResponse<object>> CreateTenantAsync(Guid enquireId, Guid paymentDetailId, Guid planId);
|
|
Task<ApiResponse<object>> RenewSubscriptionAsync(Guid tenantId, Guid employeeId, Guid paymentDetailId, Guid planId);
|
|
}
|
|
}
|