public BMLPurchaseOrderController(BalimoonBMLContext balimoonBMLContext,
                                   MainSystemContext mainSystemContext,
                                   UserManager <IdentityUser> userManager)
 {
     _balimoonBMLContext = balimoonBMLContext;
     _mainSystemContext  = mainSystemContext;
     _userManager        = userManager;
 }
 public PurchaseRequestController(BalimoonBMLContext bmlContext,
                                  MainSystemDevelopContext mainSysCtx,
                                  UserManager <Microsoft.AspNetCore.Identity.IdentityUser> userManager)
 {
     _bmlContext     = bmlContext;
     _mainSysContext = mainSysCtx;
     _userManager    = userManager;
     _uploadImages   = new UploadImages();
     _deleteImages   = new DeleteImages();
 }
Exemplo n.º 3
0
 public BalimoonUserController(
     MainSystemContext mainSystemContext,
     BalimoonBMLContext balimoonBMLContext,
     BalimoonBMIContext balimoonBMIContext,
     UserManager <IdentityUser> userManager
     )
 {
     _mainSystemContext  = mainSystemContext;
     _balimoonBMLContext = balimoonBMLContext;
     _balimoonBMIContext = balimoonBMIContext;
     _userManager        = userManager;
 }
Exemplo n.º 4
0
 public VendorsController(
     SignInManager <Microsoft.AspNetCore.Identity.IdentityUser> signInManager,
     MainSystemDevelopContext mainSystemContext,
     UserManager <Microsoft.AspNetCore.Identity.IdentityUser> userManager,
     BalimoonBMLContext balimoonBMLContext
     )
 {
     _signInManager     = signInManager;
     _userManager       = userManager;
     _MainSystemContext = mainSystemContext;
     _bmlContext        = balimoonBMLContext;
 }
Exemplo n.º 5
0
        public AccountController(
            SignInManager <Microsoft.AspNetCore.Identity.IdentityUser> signInManager,
            MainSystemDevelopContext dbContext,
            ILogger <RegisterViewModel> logger,
            BalimoonBMLContext bMLContext,
            UserManager <Microsoft.AspNetCore.Identity.IdentityUser> userManager,
            IEmailSender emailSender

            )
        {
            _signInManager = signInManager;
            _dbContext     = dbContext;
            _logger        = logger;
            _userManager   = userManager;
            _emailSender   = emailSender;
            _bmlContext    = bMLContext;
            _uploadImages  = new UploadImages();
            _deleteImages  = new DeleteImages();
            _uploadPDF     = new UploadPDF();
            _deletePDF     = new PDFDelete();
        }
Exemplo n.º 6
0
 public UsersController(MainSystemDevelopContext MainSystem,
                        BalimoonBMLContext bmlCtx)
 {
     _MainSystem = MainSystem;
     _bmlContext = bmlCtx;
 }
 public getItemLedgerController(BalimoonBMLContext context)
 {
     _dataContext = context;
 }