public MedicalManagementController(IManageFarmInterface farm, IToastNotification toastNotification,
                                    UserManager <User> userManager)
 {
     _farm = farm;
     _toastNotification = toastNotification;
     _userManager       = userManager;
 }
コード例 #2
0
 public FarmSpecialManagementController(IManageFarmInterface farm, IToastNotification toastNotification,
                                        UserManager <User> userManager, IManageExcelFile excel)
 {
     _farm = farm;
     _toastNotification = toastNotification;
     _userManager       = userManager;
     _excel             = excel;
 }