Ejemplo n.º 1
0
 public SearchProtoService(IProfileDAL profileDal, ISkillDAL skillDal, ISchoolDAL schoolDal, ICompanyDAL companyDal)
 {
     _profileDAL = profileDal;
     _skillDAL = skillDal;
     _schoolDAL = schoolDal;
     _companyDAL = companyDal;
 }
Ejemplo n.º 2
0
 public AccountController(IAuthProvider authProvider, IUserDAL userDAO, IProfileDAL profileDAO, IProfileSearchDAL profileSearchDAL)
 {
     this.authProvider     = authProvider;
     this.userDAO          = userDAO;
     this.profileDAO       = profileDAO;
     this.profileSearchDAL = profileSearchDAL;
 }
Ejemplo n.º 3
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="settings"></param>
 /// <param name="dal"></param>
 /// <param name="cfg"></param>
 public SettingsModel(ISettings settings, IProfileDAL dal, IOptions <CustomConfig> cfg)
 {
     _cfg      = cfg;
     _settings = settings;
     _settings.ReadSettings();
     _dal = dal;
 }
Ejemplo n.º 4
0
 public ProfileController(IProfileSearchDAL profileSearchDAL, IUserDAL userDAL, IAuthProvider authProvider, IProfileDAL profileDAL)
 {
     this.profileSearchDAL = profileSearchDAL;
     this.userDAL          = userDAL;
     this.authProvider     = authProvider;
     this.profileDAL       = profileDAL;
 }
Ejemplo n.º 5
0
 public ProfileController(IAccountDAL accountDAL, IProfileDAL profileDAL, IUserSession userSession, IJobDAL jobDAL, IProfileImageDAL profileImageDAL)
 {
     this.accountDAL      = accountDAL;
     this.profileDAL      = profileDAL;
     this.userSession     = userSession;
     this.jobDAL          = jobDAL;
     this.profileImageDAL = profileImageDAL;
 }
Ejemplo n.º 6
0
 public AdminController(IAccountPermissionDAL accountPermissionDAL, IAccountDAL accountDAL, IPermissionDAL permissionDAL, IProfileDAL profileDAL, IEmail _email)
 {
     this.accountPermissionDAL = accountPermissionDAL;
     this.accountDAL           = accountDAL;
     this.permissionDAL        = permissionDAL;
     this.profileDAL           = profileDAL;
     this._email = _email;
 }
Ejemplo n.º 7
0
 public AccountController(IAccountDAL accountDAL, IEmail _email, IUserSession userSession, ISessionWrapper sessionWrapper, IAccountPermissionDAL accountPermissionDAL, IProfileDAL profileDAL)
 {
     this.accountDAL           = accountDAL;
     this._email               = _email;
     this.userSession          = userSession;
     this.sessionWrapper       = sessionWrapper;
     this.accountPermissionDAL = accountPermissionDAL;
     this.profileDAL           = profileDAL;
 }
Ejemplo n.º 8
0
 public NoteController(INoteDAL noteDAL, IAccountDAL accountDAL, IProfileDAL profileDAL, IEmail _email, ISessionWrapper sessionWrapper, IUserSession userSession)
 {
     this.accountDAL     = accountDAL;
     this.profileDAL     = profileDAL;
     this._email         = _email;
     this.sessionWrapper = sessionWrapper;
     this.userSession    = userSession;
     this.noteDAL        = noteDAL;
 }
Ejemplo n.º 9
0
 public ProfileController(IProfileDAL profileDAL, IUserDAL userDAL, IAuthProvider authProvider,
                          IGoalDAL goalDAL, IFoodDAL foodDAL, IProgressDAL progressDAL, IWeightDAL weightDAL)
 {
     this.profileDAL   = profileDAL;
     this.userDAL      = userDAL;
     this.authProvider = authProvider;
     this.goalDAL      = goalDAL;
     this.foodDAL      = foodDAL;
     this.progressDAL  = progressDAL;
     this.weightDAL    = weightDAL;
 }
Ejemplo n.º 10
0
 public CreateModel(IProfileDAL profiledal)
 {
     _profileDAL = profiledal;
 }
Ejemplo n.º 11
0
 public IndexModel(IProfileDAL dal)
 {
     _dal = dal;
 }
Ejemplo n.º 12
0
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="pfd"></param>
 /// <param name="config"></param>
 public EMRUserController(IProfileDAL pfd, IConfiguration config)
 {
     _pfd    = pfd;
     _config = config;
 }
 public HomeController(IProfileDAL context) : base()
 {
     profileContext = context;
     Bridge.context = context;
     //_logger = logger;
 }
Ejemplo n.º 14
0
 /// <summary>
 /// ctor
 /// </summary>
 /// <param name="profileDAL"></param>
 /// <param name="config"></param>
 public JaffaService(IConfiguration config, IProfileDAL profileDAL)
 {
     _config     = config;
     _profileDAL = profileDAL;
 }
Ejemplo n.º 15
0
 public UserDashboardController(IProfileDAL profileDAL, IUserSession userSession)
 {
     this.profileDAL = profileDAL;
     this.userSession = userSession;
 }
Ejemplo n.º 16
0
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="pfd"></param>
 /// <param name="cfg"></param>
 public EMRAppointmentsController(IProfileDAL pfd, IOptions <CustomConfig> cfg)
 {
     _cfg = cfg;
     _pfd = pfd;
 }
Ejemplo n.º 17
0
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="pfd"></param>
 /// <param name="config"></param>
 public EMRFormsController(IProfileDAL pfd, IConfiguration config)
 {
     _config = config;
     _pfd    = pfd;
 }
Ejemplo n.º 18
0
 public HomeController(IProfileDAL dal)
 {
     _dal = dal;
 }
Ejemplo n.º 19
0
 public TraineeController(IProfileDAL dal, IWorkoutDAL dalWork, IUserDAL dalUser)
 {
     _dal        = dal;
     _dalWorkout = dalWork;
     _dalUser    = dalUser;
 }
 public ProfileBL()
 {
     _dal = DependencyFactory.Resolve<IProfileDAL>();
 }