Example #1
0
 public MyBlobsController()
 {
     this.permissionService = new PermissionService(this.Context);
     this.blobService = new BlobService(this.Context, CloudStorageAccount.Parse(ConfigReader.GetConfigValue("DataConnectionString")), ConfigReader.GetConfigValue("MainBlobContanier"));
     this.blobSetService = new BlobSetService(this.Context);
     this.eventService = new EventService(this.Context);
 }
Example #2
0
 public MyBlobsController(IPermissionService permissionService, IBlobService blobService, IBlobSetService blobSetService, IEventService eventService)
 {
     this.permissionService = permissionService;
     this.blobService = blobService;
     this.blobSetService = blobSetService;
     this.eventService = eventService;
 }
Example #3
0
 public MyBlobsController()
 {
     this.permissionService = new PermissionService(this.Context);
     this.blobService       = new BlobService(this.Context, CloudStorageAccount.Parse(ConfigReader.GetConfigValue("DataConnectionString")), ConfigReader.GetConfigValue("MainBlobContanier"));
     this.blobSetService    = new BlobSetService(this.Context);
     this.eventService      = new EventService(this.Context);
 }
Example #4
0
 public MyBlobsController(IPermissionService permissionService, IBlobService blobService, IBlobSetService blobSetService, IEventService eventService)
 {
     this.permissionService = permissionService;
     this.blobService       = blobService;
     this.blobSetService    = blobSetService;
     this.eventService      = eventService;
 }
Example #5
0
 public ReportController(IReportService reportService, IUserService userService, IBlobService blobService, IBlobSetService blobSetService)
 {
     this.reportService  = reportService;
     this.userService    = userService;
     this.blobService    = blobService;
     this.blobSetService = blobSetService;
 }
Example #6
0
 public ReportController()
 {
     this.reportService  = new ReportService(this.Context);
     this.userService    = new UserService(this.Context);
     this.blobService    = new BlobService(this.Context, CloudStorageAccount.Parse(ConfigReader.GetConfigValue("DataConnectionString")), ConfigReader.GetConfigValue("MainBlobContanier"));
     this.blobSetService = new BlobSetService(this.Context);
 }
Example #7
0
 public ReportController(IReportService reportService, IUserService userService, IBlobService blobService, IBlobSetService blobSetService)
 {
     this.reportService = reportService;
     this.userService = userService;
     this.blobService = blobService;
     this.blobSetService = blobSetService;
 }
Example #8
0
 public ReportController()
 {
     this.reportService = new ReportService(this.Context);
     this.userService = new UserService(this.Context);
     this.blobService = new BlobService(this.Context, CloudStorageAccount.Parse(ConfigReader.GetConfigValue("DataConnectionString")), ConfigReader.GetConfigValue("MainBlobContanier"));
     this.blobSetService = new BlobSetService(this.Context);
 }
Example #9
0
 public BlobController(IBlobService blobService, IBlobSetService blobSetService, IRoleService roleService, IUserService userService, IPermissionService permissionService)
 {
     this.blobService       = blobService;
     this.blobSetService    = blobSetService;
     this.roleService       = roleService;
     this.userService       = userService;
     this.permissionService = permissionService;
 }
Example #10
0
 public BlobController(IBlobService blobService, IBlobSetService blobSetService, IRoleService roleService, IUserService userService, IPermissionService permissionService)
 {
     this.blobService = blobService;
     this.blobSetService = blobSetService;
     this.roleService = roleService;
     this.userService = userService;
     this.permissionService = permissionService;
 }
Example #11
0
 public ManagementController(IBlobService blobService, IBlobSetService blobSetService, IInvitationService invitationService)
 {
     this.blobService = blobService;
     this.blobSetService = blobSetService;
     this.invitationService = invitationService;
 }
Example #12
0
 public ManagementController()
 {
     this.blobService = new BlobService(this.Context, CloudStorageAccount.Parse(ConfigReader.GetConfigValue("DataConnectionString")), ConfigReader.GetConfigValue("MainBlobContanier"));
     this.blobSetService = new BlobSetService(this.Context);
     this.invitationService = new InvitationService(this.Context);
 }
 public ChangesNotificationService(BlobShareDataStoreEntities context, BlobSetService blobSetService, SmtpNotificationService smtpNotificationService)
 {
     this.context = context;
     this.blobSetService = blobSetService;
     this.smtpNotificationService = smtpNotificationService;
 }
Example #14
0
 public ChangesNotificationService(BlobShareDataStoreEntities context, BlobSetService blobSetService, SmtpNotificationService smtpNotificationService)
 {
     this.context                 = context;
     this.blobSetService          = blobSetService;
     this.smtpNotificationService = smtpNotificationService;
 }
Example #15
0
 public ManagementController(IBlobService blobService, IBlobSetService blobSetService, IInvitationService invitationService)
 {
     this.blobService       = blobService;
     this.blobSetService    = blobSetService;
     this.invitationService = invitationService;
 }
Example #16
0
 public ManagementController()
 {
     this.blobService       = new BlobService(this.Context, CloudStorageAccount.Parse(ConfigReader.GetConfigValue("DataConnectionString")), ConfigReader.GetConfigValue("MainBlobContanier"));
     this.blobSetService    = new BlobSetService(this.Context);
     this.invitationService = new InvitationService(this.Context);
 }