Exemplo n.º 1
0
        private bool InsertRecord(Model.Management.Master.CardUserMaster_cus_Info infoObject)
        {
            bool tabB = _cardUserMasterDA.IsExistRecord((infoObject as CardUserMaster_cus_Info).cus_cNumber);

            if (!tabB)
            {
                return(_cardUserMasterDA.InsertRecord(infoObject));
            }
            return(false);
        }
Exemplo n.º 2
0
 private bool UpdateRecord(Model.Management.Master.CardUserMaster_cus_Info infoObject)
 {
     return(_cardUserMasterDA.UpdateRecord(infoObject));
 }