Ejemplo n.º 1
0
        public async Task AddTenantAsync(Tenant tenant)
        {
            if (tenant == null)
            {
                throw new ArgumentNullException(nameof(tenant));
            }

            await tenantSQLService.StoreTenantAsync(tenant);
        }
Ejemplo n.º 2
0
 public async Task StoreTenantAsync()
 {
     await tenantDataService.StoreTenantAsync(tenant);
 }