Example #1
0
        //override
        public static T_CheckupCorp AddT_CheckupCorp(string corp_name, string corp_addr, string leading_official, string contacts, string contact_numbers, string remarks, bool status)
        {
            Models.T_CheckupCorp t_CheckupCorp = new Models.T_CheckupCorp();

            TransData_AddT_CheckupCorp(corp_name, corp_addr, leading_official, contacts, contact_numbers, remarks, status, t_CheckupCorp);

            return(T_CheckupCorpService.AddT_CheckupCorp(t_CheckupCorp));
        }
Example #2
0
        //overload
        public static void ModifyT_CheckupCorp(int Id, string corp_name, string corp_addr, string leading_official, string contacts, string contact_numbers, string remarks, bool status)
        {
            Models.T_CheckupCorp t_CheckupCorp = new Models.T_CheckupCorp();
            //PK
            t_CheckupCorp.Id = Id;
            TransData_ModifyT_CheckupCorp(Id, corp_name, corp_addr, leading_official, contacts, contact_numbers, remarks, status, t_CheckupCorp);

            T_CheckupCorpService.ModifyT_CheckupCorp(t_CheckupCorp);
        }
Example #3
0
 public static T_CheckupCorp GetT_CheckupCorpById(int id)
 {
     return(T_CheckupCorpService.GetT_CheckupCorpById(id));
 }
Example #4
0
 public static List <T_CheckupCorp> GetAllT_CheckupCorpBySQLstring(string sqlstring)
 {
     return(T_CheckupCorpService.GetAllT_CheckupCorpBySQLstring(sqlstring));
 }
Example #5
0
 public static List <T_CheckupCorp> GetAllT_CheckupCorps()
 {
     return(T_CheckupCorpService.GetAllT_CheckupCorps());
 }
Example #6
0
 public static void ModifyT_CheckupCorp(T_CheckupCorp t_CheckupCorp)
 {
     T_CheckupCorpService.ModifyT_CheckupCorp(t_CheckupCorp);
 }
Example #7
0
 public static void DeleteT_CheckupCorpById(int id)
 {
     T_CheckupCorpService.DeleteT_CheckupCorpById(id);
 }
Example #8
0
 public static void DeleteT_CheckupCorp(T_CheckupCorp t_CheckupCorp)
 {
     T_CheckupCorpService.DeleteT_CheckupCorp(t_CheckupCorp);
 }
Example #9
0
 public static T_CheckupCorp AddT_CheckupCorp(T_CheckupCorp t_CheckupCorp)
 {
     return(T_CheckupCorpService.AddT_CheckupCorp(t_CheckupCorp));
 }
Example #10
0
 public static T_CheckupCorp GetT_CheckupCorpByCorp_name(string corp_name)
 {
     return(T_CheckupCorpService.GetT_CheckupCorpByCorp_name(corp_name));
 }
Example #11
0
 public static void DeleteT_CheckupCorpById(string corp_name)
 {
     T_CheckupCorpService.DeleteT_CheckupCorpById(corp_name);
 }