コード例 #1
0
ファイル: WSGestion.asmx.cs プロジェクト: juahidma/petnet-web
        public Boolean CRE_Sucursal(MOD_Sucursal obj)
        {
            try
            {
                LOG_Sucursal Logica = new LOG_Sucursal();
                Logica.CRE_Sucursal(obj);
                return true;
            }
            catch (Exception )
            {
                return false;
                throw ;

            }
        }
コード例 #2
0
ファイル: WSGestion.asmx.cs プロジェクト: juahidma/petnet-web
 public void UPD_Sucursal(MOD_Sucursal obj)
 {
     try
     {
         LOG_Sucursal Logica = new LOG_Sucursal();
         Logica.UPD_Sucursal(obj);
     }
     catch (Exception )
     {
         throw ;
     }
 }
コード例 #3
0
ファイル: WSGestion.asmx.cs プロジェクト: juahidma/petnet-web
 public List<MOD_Sucursal> SEL_GRID_Sucursal(int codigo_centro, string buscar)
 {
     try
     {
         LOG_Sucursal logica = new LOG_Sucursal();
         List<MOD_Sucursal> Lista = logica.SEL_Grid_Sucursal(codigo_centro, buscar);
         return Lista;
     }
     catch (Exception )
     {
         throw ;
     }
 }
コード例 #4
0
ファイル: WSGestion.asmx.cs プロジェクト: juahidma/petnet-web
 public MOD_Sucursal SEL_GRID_BY_ID_Sucursal(int Codigo_Sucursal, int Centro_Atencion)
 {
     try
     {
         LOG_Sucursal logica = new LOG_Sucursal();
         MOD_Sucursal obj = logica.SEL_Grid_By_Id_Sucursal(Codigo_Sucursal, Centro_Atencion);
         return obj;
     }
     catch (Exception )
     {
         throw ;
     }
 }
コード例 #5
0
ファイル: WSGestion.asmx.cs プロジェクト: juahidma/petnet-web
 public List<MOD_Sucursal> SEL_DL_Sucursal(int codigo)
 {
     try
     {
         LOG_Sucursal logica = new LOG_Sucursal();
         List<MOD_Sucursal> lista = logica.SEL_DL_Sucursal(codigo);
         return lista;
     }
     catch (Exception )
     {
         throw ;
     }
 }
コード例 #6
0
ファイル: WSGestion.asmx.cs プロジェクト: juahidma/petnet-web
 public void DEL_Sucursal(int Codigo)
 {
     try
     {
         LOG_Sucursal Logica = new LOG_Sucursal();
         Logica.DEL_Sucursal(Codigo);
     }
     catch (Exception )
     {
         throw ;
     }
 }