Esempio n. 1
0
        public static int UpdateStrongPushAD(LoginRegisterDataView model)
        {
            StrongPushAD ad = GetStrongPushAD(model);

            if (ad == null)
            {
                return(StrongPushADDAL.AddStrongPushAD(model));
            }
            else
            {
                return(StrongPushADDAL.UpdateStrongPushAD(model));
            }
        }
Esempio n. 2
0
 public static int AddStrongPushAD(LoginRegisterDataView model)
 {
     return(StrongPushADDAL.AddStrongPushAD(model));
 }