Esempio n. 1
0
 public bool AddCountryMaster(DataContracts.Masters.DC_Country param)
 {
     using (BusinessLayer.BL_Masters obj = new BL_Masters())
     {
         return(obj.AddCountryMaster(param));
     }
 }
Esempio n. 2
0
 public bool UpdateCountryMaster(DataContracts.Masters.DC_Country param)
 {
     using (DataLayer.DL_Masters obj = new DataLayer.DL_Masters())
     {
         return(obj.UpdateCountryMaster(param));
     }
 }
Esempio n. 3
0
 public DC_Message AddUpdateCountryMaster(DataContracts.Masters.DC_Country param)
 {
     using (BusinessLayer.BL_Masters obj = new BL_Masters())
     {
         return(obj.AddUpdateCountryMaster(param));
     }
 }