Esempio n. 1
0
        public async Task<JsonResult> Search()
        {
            using (var svc = new Services.DataProvider("agent"))
            {
                var list = await svc.Get<IList<Models.Agent>>();

                return Json(list);
            }
        }
Esempio n. 2
0
        public async Task<JsonResult> GetAssets()
        {
            using (var svc = new Services.DataProvider("report/assets"))
            {
                var item = await svc.Get<Models.RejectionCounter>();

                return Json(item);
            }
        }
Esempio n. 3
0
        public async Task <JsonResult> Search()
        {
            using (var svc = new Services.DataProvider("bookmaker"))
            {
                var list = await svc.Get <IList <Models.Bookmaker> >();

                return(Json(list));
            }
        }
Esempio n. 4
0
        public async Task <JsonResult> GetAssets()
        {
            using (var svc = new Services.DataProvider("report/assets"))
            {
                var item = await svc.Get <Models.RejectionCounter>();

                return(Json(item));
            }
        }
Esempio n. 5
0
        public async Task <JsonResult> Search()
        {
            using (var svc = new Services.DataProvider("maintenance"))
            {
                var list = await svc.Get <IList <Models.Maintenance> >();

                return(Json(list));
            }
        }
Esempio n. 6
0
        private async Task<Models.RejectionRate> command(Guid agentId)
        {
            using (var svc = new Services.DataProvider("report", new Dictionary<string, object> { { "id", agentId } }))
            {
                var item = await svc.Get<Models.RejectionRate>();
                item.ID = agentId;

                return item;
            }
        }
Esempio n. 7
0
 public async Task <JsonResult> Update(Guid id, string url)
 {
     using (var svc = new Services.DataProvider("bookmaker", new Dictionary <string, object> {
         { "id", id },
         { "url", url }
     }))
     {
         return(Json(await svc.Put <bool>()));
     }
 }
Esempio n. 8
0
 public async Task<JsonResult> Update(Guid id, string url)
 {
     using (var svc = new Services.DataProvider("bookmaker", new Dictionary<string, object> {
         { "id", id },
         { "url", url}
     }))
     {
         return Json(await svc.Put<bool>());
     }
 }
Esempio n. 9
0
        public async Task <JsonResult> Search(int page = 0, int size = 8)
        {
            using (var svc = new Services.DataProvider("rejection", new Dictionary <string, object> {
                { "page", page },
                { "size", size }
            }))
            {
                var list = await svc.Get <Models.Pagination <Models.Rejection> >();

                return(Json(list));
            }
        }
Esempio n. 10
0
        public async Task<JsonResult> Search(DateTime? date, int page = 0, int size = 8)
        {
            using (var svc = new Services.DataProvider("betlist", new Dictionary<string, object> {
                { "page", page },
                { "size", size }
            }))
            {
                var list = await svc.Get<Models.Pagination<Models.Event>>();

                return Json(list);
            }
        }
Esempio n. 11
0
        private async Task <Models.RejectionRate> command(Guid agentId)
        {
            using (var svc = new Services.DataProvider("report", new Dictionary <string, object> {
                { "id", agentId }
            }))
            {
                var item = await svc.Get <Models.RejectionRate>();

                item.ID = agentId;

                return(item);
            }
        }
Esempio n. 12
0
        public void Test()
        {
            // Arrange
            int workBlockSize = 1000000;

            int processorCount = Environment.ProcessorCount;

            string dataDirectory = AppDomain.CurrentDomain.BaseDirectory.Split("bin")[0] + "/Data/sample-2mb-text-file.txt";

            // Act
            using (Services.DataProvider dataProvider = new Services.DataProvider(dataDirectory, workBlockSize, processorCount * workBlockSize))
            {
                // Assert
                Assert.IsType <Services.DataProvider>(dataProvider);
            }
        }
Esempio n. 13
0
        public void Test()
        {
            // Arrange
            int workBlockSize = 1;

            int processorCount = Environment.ProcessorCount;

            string dataDirectory = AppDomain.CurrentDomain.BaseDirectory.Split("bin")[0] + "/Data/sample-2mb-text-file.txt";

            DataPart[] initialBuffer = new DataPart[processorCount];

            // Act
            using (Services.DataProvider dataProvider = new Services.DataProvider(dataDirectory, workBlockSize, processorCount * workBlockSize))
            {
                long readBytesCount = dataProvider.GetData(initialBuffer);

                // Assert
                Assert.Equal(processorCount * workBlockSize, readBytesCount);
            }
        }
Esempio n. 14
0
        public async Task <JsonResult> Create(Models.MaintenanceMode mode)
        {
            var from = DateTime.Now;
            var to   = from.AddMinutes(15);

            using (var svc = new Services.DataProvider("maintenance", new Dictionary <string, object> {
                { "mode", (byte)mode }
            }))
            {
                return(Json(await svc.Post <bool>()));
            }

            //using (var svc = new Services.DataProvider("maintenance"))
            //{
            //    return Json(await svc.Post<bool>(new
            //    {
            //        from = from,
            //        to = to
            //    }));
            //}
        }
Esempio n. 15
0
        public async Task<JsonResult> Create(Models.MaintenanceMode mode)
        {
            var from = DateTime.Now;
            var to = from.AddMinutes(15);

            using (var svc = new Services.DataProvider("maintenance", new Dictionary<string, object> {
                { "mode", (byte)mode }
            }))
            {
                return Json(await svc.Post<bool>());
            }

            //using (var svc = new Services.DataProvider("maintenance"))
            //{
            //    return Json(await svc.Post<bool>(new
            //    {
            //        from = from,
            //        to = to
            //    }));
            //}
        }