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;
        }
Esempio n. 2
0
 public void Add([FromBody] SpecialInventDTO specialInvent)
 {
     InventDoseBL.AddSpecialInvent(specialInvent);
 }
Esempio n. 3
0
 public void updateSpecialOrder([FromBody] SpecialInventDTO specialInvent)
 {
     InventDoseBL.updateSpecialInvent(specialInvent);
 }
Esempio n. 4
0
 public void deleteSpecialOrder([FromBody] SpecialInventDTO specialInvent)
 {
     InventDoseBL.DeleteSpecialInvent(specialInvent);
 }
Esempio n. 5
0
        public List <SpecialInventDTO> GetAllSpecialInvent()
        {
            var s = InventDoseBL.GetAllSpecialInvent();

            return(s);
        }
 public void Addfeedback([FromBody] InventDoseDTO inventDose)
 {
     InventDoseBL.Addfeedback(inventDose);
 }
 public List <FavoriteDose> getfeedbackDose()
 {
     return(InventDoseBL.getDoseByfeedback());
 }
 public void Post([FromBody] InventDoseDTO inventDose)
 {
     InventDoseBL.UpdateStatus(inventDose);
 }
 public List <InventDoseDTO> GetAllPrepaerInventDose(int id)
 {
     return(InventDoseBL.GetAllById(id));
 }
 public List <InventDoseDTO> GetAllInventDose()
 {
     return(InventDoseBL.GetAll());
 }
        public List <InventDoseDTO> Get(int id)
        {
            var l = InventDoseBL.GetById(id);

            return(l);
        }
        // GET: api/InventDose

        public List <InventDoseDTO> GetCurrentInvents()
        {
            return(InventDoseBL.GetCurrentInvents());
        }