示例#1
0
 public List <in_transferencia_Info> ObtenerTransferencias(int idempresa, DateTime FechaIni, DateTime FechaFin, int idSucursal, int idBodega)
 {
     try
     {
         return(oData_Transferencia.Get_List_transferencia(idempresa, FechaIni, FechaFin, idSucursal, idBodega));
     }
     catch (Exception ex)
     {
         Core.Erp.Info.Log_Exception.LoggingManager.Logger.Log(Core.Erp.Info.Log_Exception.LoggingCategory.Error, ex.Message);
         throw new Core.Erp.Info.Log_Exception.DalException(string.Format("", "ObtenerTransferencias", ex.Message), ex)
               {
                   EntityType = typeof(in_transferencia_bus)
               };
     }
 }