public Chore GetChoreById(int choreId) { if (choreId == 0) { throw new InvalidParameterException("Invalid parameters!"); } return(_choreService.GetById(choreId)); }
public Chore GetOne(long id) { return(_choreService.GetById(id)); }