Example #1
0
        public ProjectService(DiyManagerContext context)
        {
            projects = context.Project;

            this.context = context;
        }
Example #2
0
        public ResourceService(DiyManagerContext context)
        {
            resources = context.Resource;

            this.context = context;
        }
Example #3
0
        public ProjectDetailsService(DiyManagerContext context)
        {
            projectDetails = context.ProjectDetails;

            this.context = context;
        }
Example #4
0
        public StepService(DiyManagerContext context)
        {
            steps = context.Step;

            this.context = context;
        }
Example #5
0
        public UserService(DiyManagerContext context)
        {
            users = context.User;

            this.context = context;
        }