Exemplo n.º 1
0
        public void EditCap(int id, string name, int cost, string description)
        {
            DAL_Cap DAL_Cap = new DAL_Cap();

            DAL_Cap.EditCap(id, name, cost, description);
        }
Exemplo n.º 2
0
        public void AddCap(Cap cap)
        {
            DAL_Cap DAL_Cap = new DAL_Cap();

            DAL_Cap.AddCap(cap);
        }
Exemplo n.º 3
0
        public void DeleteCap(int id)
        {
            DAL_Cap DAL_Cap = new DAL_Cap();

            DAL_Cap.DeleteCap(id);
        }
Exemplo n.º 4
0
        public List <Cap> GetCapList()
        {
            DAL_Cap DAL_Cap = new DAL_Cap();

            return(DAL_Cap.GetCapList());
        }