public UploadProfilePictureController(INetcoreService netcoreService,
                                       IHostingEnvironment env,
                                       UserManager <ApplicationUser> userManager,
                                       TriumphDbContext context)
 {
     _netcoreService = netcoreService;
     _env            = env;
     _userManager    = userManager;
     _context        = context;
 }
示例#2
0
 public ApplicationUserController(TriumphDbContext context,
                                  INetcoreService netCoreService,
                                  UserManager <ApplicationUser> userManager,
                                  ILogger <ApplicationUserController> logger)
 {
     _context        = context;
     _netCoreService = netCoreService;
     _userManager    = userManager;
     _logger         = logger;
 }
示例#3
0
 public NetcoreService(UserManager <ApplicationUser> userManager,
                       RoleManager <IdentityRole> roleManager,
                       TriumphDbContext context,
                       SignInManager <ApplicationUser> signInManager,
                       IRoles roles,
                       IOptions <SuperAdminDefaultOptions> superAdminDefaultOptions)
 {
     _userManager              = userManager;
     _roleManager              = roleManager;
     _context                  = context;
     _signInManager            = signInManager;
     _roles                    = roles;
     _superAdminDefaultOptions = superAdminDefaultOptions.Value;
 }
 public TodoController(TriumphDbContext context)
 {
     _context = context;
 }
 public EmployeeNoteController(TriumphDbContext context)
 {
     _context = context;
 }
示例#6
0
 public ChannelController(TriumphDbContext context)
 {
     _context = context;
 }
示例#7
0
 public RatingController(TriumphDbContext context)
 {
     _context = context;
 }
 public ShipmentController(TriumphDbContext context, INetcoreService netcoreService)
 {
     _context        = context;
     _netcoreService = netcoreService;
 }
 public CustomerController(TriumphDbContext context)
 {
     _context = context;
 }
 public TransferInController(TriumphDbContext context)
 {
     _context = context;
 }
 public TransferOutController(TriumphDbContext context, INetcoreService netcoreService)
 {
     _context        = context;
     _netcoreService = netcoreService;
 }
 public ShipmentLineController(TriumphDbContext context)
 {
     _context = context;
 }
示例#13
0
 public ContactController(TriumphDbContext context)
 {
     _context = context;
 }
示例#14
0
 public ActivityController(TriumphDbContext context)
 {
     _context = context;
 }
示例#15
0
 public LeadLineController(TriumphDbContext context)
 {
     _context = context;
 }
 public WarehouseController(TriumphDbContext context)
 {
     _context = context;
 }
示例#17
0
 public NoteController(TriumphDbContext context)
 {
     _context = context;
 }
 public PurchaseOrderController(TriumphDbContext context)
 {
     _context = context;
 }
 public AccountExecutiveController(TriumphDbContext context)
 {
     _context = context;
 }
 public SalesOrderController(TriumphDbContext context)
 {
     _context = context;
 }
 public ReceivingLineController(TriumphDbContext context)
 {
     _context = context;
 }
示例#22
0
 public StageController(TriumphDbContext context)
 {
     _context = context;
 }
示例#23
0
 public ProjectController(TriumphDbContext context)
 {
     _context = context;
 }
示例#24
0
 public VendorLineController(TriumphDbContext context)
 {
     _context = context;
 }
 public TransferOutLineController(TriumphDbContext context)
 {
     _context = context;
 }
示例#26
0
 public BranchController(TriumphDbContext context)
 {
     _context = context;
 }
示例#27
0
 public ClientController(TriumphDbContext context)
 {
     _context = context;
 }
示例#28
0
 public BlogsController(TriumphDbContext context)
 {
     _context = context;
 }
示例#29
0
 public OpportunityLineController(TriumphDbContext context)
 {
     _context = context;
 }
示例#30
0
 public DashboardController(TriumphDbContext context)
 {
     _context = context;
 }