Exemple #1
0
 public bool Add(SecureWindow oEntity)
 {
     oEntity.ID = DALUtility.GetUniqueId(DALConstants.UniqueIdSecureWindow);
     return(SecureWindowDAL.Add(oEntity));
 }
Exemple #2
0
 public bool Add(LoginGroup oEntity)
 {
     oEntity.ID = DALUtility.GetUniqueId(DALConstants.UniqueIdLoginGroupType);
     return(LoginGroupDAL.Add(oEntity));
 }
Exemple #3
0
 public bool Add(User oEntity)
 {
     oEntity.ID = DALUtility.GetUniqueId(DALConstants.UniqueIdLoginUserType);
     return(UserDAL.Add(oEntity));
 }
Exemple #4
0
 public bool Add(AccessType oEntity)
 {
     oEntity.ID = DALUtility.GetUniqueId(DALConstants.UniqueIdAccessType);
     return(AccessTypeDAL.Add(oEntity));
 }