예제 #1
0
 public UserController(MilloDbContext context,
                       UserManager <ApplicationUser> userManager,
                       RoleManager <IdentityRole> roleManager)
 {
     _context     = context;
     _userManager = userManager;
     _roleManager = roleManager;
 }
예제 #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;
 }
예제 #4
0
 public SalesOrderLineController(MilloDbContext context)
 {
     _context = context;
 }
예제 #5
0
 public BillTypeController(MilloDbContext context)
 {
     _context = context;
 }
 public InvoiceTypeController(MilloDbContext context)
 {
     _context = context;
 }
 public PaymentReceiveController(MilloDbContext context,
                                 INumberSequence numberSequence)
 {
     _context        = context;
     _numberSequence = numberSequence;
 }
예제 #8
0
 public SalesTypeController(MilloDbContext context)
 {
     _context = context;
 }
예제 #9
0
 public ManageUser()
 {
     _dbContext = new MilloDbContext();
 }
 public PurchaseOrderLineController(MilloDbContext context)
 {
     _context = context;
 }
예제 #11
0
 public ProductController(MilloDbContext context)
 {
     _context = context;
 }
예제 #12
0
 public VendorTypeController(MilloDbContext context)
 {
     _context = context;
 }
 public PurchaseOrderController(MilloDbContext context,
                                INumberSequence numberSequence)
 {
     _context        = context;
     _numberSequence = numberSequence;
 }
예제 #14
0
 public PurchaseTypeController(MilloDbContext context)
 {
     _context = context;
 }
예제 #15
0
 public BranchController(MilloDbContext context)
 {
     _context = context;
 }
 public GoodsReceivedNoteController(MilloDbContext context,
                                    INumberSequence numberSequence)
 {
     _context        = context;
     _numberSequence = numberSequence;
 }
예제 #17
0
 public WarehouseController(MilloDbContext context)
 {
     _context = context;
 }
예제 #18
0
 public CustomerTypeController(MilloDbContext context)
 {
     _context = context;
 }
 public PaymentVoucherController(MilloDbContext context,
                                 INumberSequence numberSequence)
 {
     _context        = context;
     _numberSequence = numberSequence;
 }
 public ShipmentTypeController(MilloDbContext context)
 {
     _context = context;
 }
예제 #21
0
 public CashBankController(MilloDbContext context)
 {
     _context = context;
 }
예제 #22
0
 public CurrencyController(MilloDbContext context)
 {
     _context = context;
 }
예제 #23
0
 public UserController()
 {
     _dbContext = new MilloDbContext();
 }
예제 #24
0
 public BillController(MilloDbContext context,
                       INumberSequence numberSequence)
 {
     _context        = context;
     _numberSequence = numberSequence;
 }
 public UnitOfMeasureController(MilloDbContext context)
 {
     _context = context;
 }