protected override void Initialize(HttpControllerContext controllerContext)
        {
            base.Initialize(controllerContext);
            MobileAppsFileSampleContext context = new MobileAppsFileSampleContext();

            DomainManager = new EntityDomainManager <TodoItem>(context, Request, Services);
        }
Exemple #2
0
        protected override void Initialize(HttpControllerContext controllerContext)
        {
            base.Initialize(controllerContext);
            MobileAppsFileSampleContext context = new MobileAppsFileSampleContext();

            DomainManager = new EntityDomainManager <Profiles>(context, Request, enableSoftDelete: true);
        }