Hi On all my controllers, I recycle the same code that wraps my models and accesses the service - and I'm tired of copying / pasting it into each controller:
private IProjectService _service; public New() { _service = new ProjectService(new ModelValidation(this.ModelState)); } public New(IProjectService service) { _service = service; }
Is there a place where I can post this where all my controllers access it?
gnome source share