예제 #1
0
 public static Tenant GetById(int id)
 {
     return(TenantConverter.ToDTO(TenantDAL.GetById(id)));
 }
예제 #2
0
 public static Tenant GetTenantByUserId(int userId)
 {
     return(TenantConverter.ToDTO(TenantDAL.GetByUserId(userId)));
 }