Example #1
0
 public static bool Insert(Common.PhoneBookRegularContent phoneBookRegularContent)
 {
     Business.PhoneBookRegularContent phoneBookRegularContentController = new Business.PhoneBookRegularContent();
     return(phoneBookRegularContentController.Insert(phoneBookRegularContent) != Guid.Empty ? true : false);
 }
Example #2
0
 public static bool Delete(Guid guid)
 {
     Business.PhoneBookRegularContent phoneBookRegularContentController = new Business.PhoneBookRegularContent();
     return(phoneBookRegularContentController.Delete(guid));
 }
Example #3
0
 public static DataTable GetRegularContents(Guid phoneBookGuid)
 {
     Business.PhoneBookRegularContent phoneBookRegularContentController = new Business.PhoneBookRegularContent();
     return(phoneBookRegularContentController.GetRegularContents(phoneBookGuid));
 }