Exemplo n.º 1
0
 public void Delete(TechnologyIds technologyIds)
 {
     Repository.DeleteByIds(technologyIds.Ids);
 }
Exemplo n.º 2
0
 public object Get(TechnologyIds technologyIds)
 {
     return technologyIds.Ids.IsEmpty()
                ? Repository.GetAll()
                : Repository.GetByIds(technologyIds.Ids);
 }
Exemplo n.º 3
0
        }                                                    //Injected by IOC

        public object Get(TechnologyIds technologyIds)
        {
            return(technologyIds.Ids.IsEmpty()
                       ? Repository.GetAll()
                       : Repository.GetByIds(technologyIds.Ids));
        }
Exemplo n.º 4
0
 public void Delete(TechnologyIds technologyIds)
 {
     Repository.DeleteByIds(technologyIds.Ids);
 }