public Order Get(int id) { if (id > 0) { return(_repo.Get(id)); } return(null); }
public List <Cinema> Get() { return(_cinemaRepository.Get()); }