. , , , , , ( - yuck!) , . , , .
.
, ObjectRepository, :
public class HttpObjectService
{
private readonly ObjectRepository _repository;
public HttpObjectService(ObjectRepository repository)
{
if (repository == null) throw new ArgumentNullException("repository");
_repository = repository;
}
public Object ById(int id)
{
var obj = _repository.ById(id);
}
}
. , "-" , HttpExceptions , , , , , .
, , , ( ) . , - . ObjectValidator , . , .
, - , MVC, - .