Example #1
0
 public DrawingsService(System.Data.Objects.ObjectContext context)
 {
     this._drawingsRepository = new DrawingsRepository(context);
     base._repository         = this._drawingsRepository;
 }
 public DrawingsService(IDrawingsRepository drawingsRepository)
 {
     this._drawingsRepository = drawingsRepository;
 }
Example #3
0
 public DrawingsService()
 {
     this._drawingsRepository = new DrawingsRepository();
     base._repository         = this._drawingsRepository;
 }