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