Exemplo n.º 1
0
 public ManageController(Data.BinxioDb db, XioServiceResolver sr, IServiceProvider isp, ITaskManager tm)
 {
     this.db  = db;
     this.sr  = sr;
     this.isp = isp;
     this.tm  = tm;
 }
Exemplo n.º 2
0
 public ProjectManager(IDataProtectionProvider dpp, ITaskManager taskManager, BinxioDb db, Mapper mapper)
 {
     this.dpp         = dpp;
     this.taskManager = taskManager;
     this.db          = db;
     this.mapper      = mapper;
     this.protector   = dpp.CreateProtector("ProjectDb");
 }
Exemplo n.º 3
0
 public ClientRepository(BinxioDb db, IXioMapper mapper, IXioLog <ClientRepository> log)
 {
     this.db     = db;
     this.mapper = mapper;
     this.log    = log;
 }
Exemplo n.º 4
0
 public UserRepository(BinxioDb db, IXioMapper mapper)
 {
     this.db     = db;
     this.mapper = mapper;
 }
Exemplo n.º 5
0
 public CreateProjectTask(BinxioDb db, Mapper mapper)
 {
     this.db     = db;
     this.mapper = mapper;
 }