Exemplo n.º 1
0
        public void Delete()
        {
            GroupRepository _repo = new GroupRepository();

            _repo.Delete(this);
        }
Exemplo n.º 2
0
        public void Update(string abonents_add, string abonents_del)
        {
            GroupRepository _repo = new GroupRepository();

            _repo.Update(this, abonents_add, abonents_del);
        }
Exemplo n.º 3
0
        public void Create()
        {
            GroupRepository _repo = new GroupRepository();

            _repo.Create(this);
        }
Exemplo n.º 4
0
        public List <GroupModel> FindAll()
        {
            GroupRepository _repo = new GroupRepository();

            return(_repo.Groups());
        }