Example #1
0
 public IEnumerable <T> GetAll <T>() where T : new()
 {
     return(DbUtil.GetAll <T>(Cs));
 }
Example #2
0
 public IEnumerable <T> GetAll()
 {
     return(DbUtil.GetAll <T>(Cs));
 }
Example #3
0
 public IEnumerable <Role> GetRoles()
 {
     return(DbUtil.GetAll <Role>(Cs));
 }