예제 #1
0
파일: WindowManager.cs 프로젝트: radnusv/BC
 public bool Add(SecureWindow oEntity)
 {
     oEntity.ID = DALUtility.GetUniqueId(DALConstants.UniqueIdSecureWindow);
     return(SecureWindowDAL.Add(oEntity));
 }
예제 #2
0
 public bool Add(LoginGroup oEntity)
 {
     oEntity.ID = DALUtility.GetUniqueId(DALConstants.UniqueIdLoginGroupType);
     return(LoginGroupDAL.Add(oEntity));
 }
예제 #3
0
파일: UserManager.cs 프로젝트: radnusv/BC
 public bool Add(User oEntity)
 {
     oEntity.ID = DALUtility.GetUniqueId(DALConstants.UniqueIdLoginUserType);
     return(UserDAL.Add(oEntity));
 }
예제 #4
0
 public bool Add(AccessType oEntity)
 {
     oEntity.ID = DALUtility.GetUniqueId(DALConstants.UniqueIdAccessType);
     return(AccessTypeDAL.Add(oEntity));
 }