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