コード例 #1
0
 public string OperEstructurasInsert(string KeySesion, long IdCondicion, long IdEstructura, string OperacionEstrucuturaName)
 {
     string res = "";
     Cat_Operacion_Estructura_Repository OperEstructurasInsert = new Cat_Operacion_Estructura_Repository();
     try
     {
         OperEstructurasInsert.OperEstructurasInsert_Insert(KeySesion, IdCondicion, IdEstructura, OperacionEstrucuturaName);
     }
     catch (Exception ex)
     {
         var err = ex.Message;
     }
     return res;
 }
コード例 #2
0
 public string OperationEstructUpdate(string KeySesion, string IdOperacionEstructura, long IdCondicion, long IdEstructura, string OperacionEstrucuturaName)
 {
     string res = "";
     Cat_Operacion_Estructura_Repository OperationEstructUpdate = new Cat_Operacion_Estructura_Repository();
     try
     {
         OperationEstructUpdate.OperationEstruct_Update(KeySesion, IdOperacionEstructura, IdCondicion, IdEstructura, OperacionEstrucuturaName);
     }
     catch (Exception ex)
     {
         var err = ex.Message;
     }
     return res;
 }
コード例 #3
0
 public string OperationsEstructDelete(string KeySesion, string IdOperacionEstructura)
 {
     string res = "";
     Cat_Operacion_Estructura_Repository OperationsEstructDelete = new Cat_Operacion_Estructura_Repository();
     try
     {
         OperationsEstructDelete.OperationsEstruct_Delete(KeySesion, IdOperacionEstructura);
     }
     catch (Exception ex)
     {
         var err = ex.Message;
     }
     return res;
 }
コード例 #4
0
 public List<CAT_OPERACION_ESTRUCTURA_V2_Model> Download_OperationsSelec(string KeySesion)
 {
     List<CAT_OPERACION_ESTRUCTURA_V2_Model> lst = null;
     Cat_Operacion_Estructura_Repository OperacionEstructuraSelect = new Cat_Operacion_Estructura_Repository();
     try
     {
         lst = OperacionEstructuraSelect.OperacionEstructura_Select(KeySesion);
     }
     catch (Exception ex)
     {
         var e = ex.Message;
     }
     return lst;
 }