Beispiel #1
0
 public UserController(MilloDbContext context,
                       UserManager <ApplicationUser> userManager,
                       RoleManager <IdentityRole> roleManager)
 {
     _context     = context;
     _userManager = userManager;
     _roleManager = roleManager;
 }
Beispiel #2
0
 public UploadProfilePictureController(IFunctional functionalService,
                                       IHostingEnvironment env,
                                       UserManager <ApplicationUser> userManager,
                                       MilloDbContext context)
 {
     _functionalService = functionalService;
     _env         = env;
     _userManager = userManager;
     _context     = context;
 }
 public NumberSequenceController(MilloDbContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public SalesOrderLineController(MilloDbContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public BillTypeController(MilloDbContext context)
 {
     _context = context;
 }
 public InvoiceTypeController(MilloDbContext context)
 {
     _context = context;
 }
 public PaymentReceiveController(MilloDbContext context,
                                 INumberSequence numberSequence)
 {
     _context        = context;
     _numberSequence = numberSequence;
 }
 public SalesTypeController(MilloDbContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public ManageUser()
 {
     _dbContext = new MilloDbContext();
 }
 public PurchaseOrderLineController(MilloDbContext context)
 {
     _context = context;
 }
Beispiel #11
0
 public ProductController(MilloDbContext context)
 {
     _context = context;
 }
 public VendorTypeController(MilloDbContext context)
 {
     _context = context;
 }
 public PurchaseOrderController(MilloDbContext context,
                                INumberSequence numberSequence)
 {
     _context        = context;
     _numberSequence = numberSequence;
 }
Beispiel #14
0
 public PurchaseTypeController(MilloDbContext context)
 {
     _context = context;
 }
 public BranchController(MilloDbContext context)
 {
     _context = context;
 }
 public GoodsReceivedNoteController(MilloDbContext context,
                                    INumberSequence numberSequence)
 {
     _context        = context;
     _numberSequence = numberSequence;
 }
 public WarehouseController(MilloDbContext context)
 {
     _context = context;
 }
Beispiel #18
0
 public CustomerTypeController(MilloDbContext context)
 {
     _context = context;
 }
 public PaymentVoucherController(MilloDbContext context,
                                 INumberSequence numberSequence)
 {
     _context        = context;
     _numberSequence = numberSequence;
 }
 public ShipmentTypeController(MilloDbContext context)
 {
     _context = context;
 }
Beispiel #21
0
 public CashBankController(MilloDbContext context)
 {
     _context = context;
 }
 public CurrencyController(MilloDbContext context)
 {
     _context = context;
 }
 public UserController()
 {
     _dbContext = new MilloDbContext();
 }
 public BillController(MilloDbContext context,
                       INumberSequence numberSequence)
 {
     _context        = context;
     _numberSequence = numberSequence;
 }
 public UnitOfMeasureController(MilloDbContext context)
 {
     _context = context;
 }