public void AddTotblProfileConfigs(tblProfileConfig tblProfileConfig)
 {
     AddObject("tblProfileConfigs", tblProfileConfig);
 }
 public static tblProfileConfig CreatetblProfileConfig(int id, int userID, int type, string value, string branchId)
 {
     tblProfileConfig tblProfileConfig = new tblProfileConfig();
     tblProfileConfig.ID = id;
     tblProfileConfig.UserID = userID;
     tblProfileConfig.Type = type;
     tblProfileConfig.Value = value;
     tblProfileConfig.BranchId = branchId;
     return tblProfileConfig;
 }