示例#1
0
 /// <summary>
 /// Getting All Data from Users table
 /// </summary>
 /// <returns></returns>
 public IEnumerable <UserTables> GetAllCustomers()
 {
     try
     {
         return(usertableRepository.GetAll());
     }
     catch (Exception)
     {
         throw;
     }
 }
 public IEnumerable <UserTables> GetAllCustomers()
 {
     return(usertableRepository.GetAll());
 }