public List <InventDoseDTO> GetAllWaitingInventDose()
        {
            return(InventDoseBL.GetAllById(3));

            var list = InventDoseBL.GetAll();
            List <InventDoseDTO> List = new List <InventDoseDTO>();

            foreach (var item in list)
            {
                if (item.IdStatusDose == 3)
                {
                    List.Add(item);
                }
            }
            return(List);
            // var list =InventDoseBL.GetAllById(3);
            //return list;
        }
 public List <InventDoseDTO> GetAllInventDose()
 {
     return(InventDoseBL.GetAll());
 }