Exemple #1
0
        /// <summary>
        /// Assigns object of SCMobile to a variable.
        /// </summary>

        public KPIReportingRepository(SCMobile ctx)
        {
            _scm = ctx;
        }
 /// <summary>
 /// Constructor of MobileStaffRepositiry
 /// </summary>
 /// <param name="ctx"></param>
 public MobileStaffRepositiry(SCMobile ctx)
 {
     _scEntity = ctx;
 }
 public MessageHandler()
 {
     _ctx = new SCMobile();
 }
 public ClientRepository(SCMobile ctx)
 {
     _ctx = ctx;
 }
 /// <summary>
 /// Constructor of SimpleAuthorizationServerProvider
 /// </summary>
 /// <param name="ctx"></param>
 public AuthorizationServerProvider(SCMobile ctx)
 {
     _ctx = ctx;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="repo"></param>
 public PatientController(IPatientRepository repo)
 {
     _repo    = repo;
     _ctx     = new SCMobile();
     _appRepo = new AppointmentRepository(_ctx);
 }
Exemple #7
0
 public ErrorLogRepository(SCMobile ctx)
 {
     _ctx = ctx;
 }
 public CommonRepository(SCMobile ctx)
 {
     _ctx = ctx;
 }
Exemple #9
0
 /// <summary>
 /// Constructor of BriefcaseRepositiry
 /// </summary>
 /// <param name="ctx"></param>
 public BriefcaseRepositiry(SCMobile ctx)
 {
     _ctx = ctx;
 }
 public DocumentRepository(SCMobile ctx)
 {
     _ctx = ctx;
     _commonRepository = new CommonRepository(_ctx);
 }
 /// <summary>
 /// Constructor of AuthRepository
 /// </summary>
 /// <param name="ctx"></param>
 public AuthRepository(SCMobile ctx)
 {
     _scEntity = ctx;
 }