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