Esempio n. 1
0
        public async Task <ResponseDto <List <Models.Work> > > SearchAsync(WorkSearchRequestDto request)
        {
            const string methodName = ClassName + "." + nameof(SearchAsync);

            var response = new ResponseDto <List <Models.Work> >()
            {
                Result = new List <Models.Work>()
            };

            try
            {
                // TODO Make entity action here
                var testResult = new Models.Work()
                {
                    WorkId      = 1,
                    WorkName    = "TestWorkLoad",
                    IsCompleted = true,
                    IsActive    = true,
                };
                response.Result.Add(testResult);
                response.SetSuccess();
            }
            catch (Exception ex)
            {
                response.SetError(0, ex.Message, methodName, ResponseType.Error);
            }

            return(response);
        }
Esempio n. 2
0
        public ActionResult Index()
        {
            DateTime date = DateTime.Now;

            Models.Human HR = new Models.Human();
            HR.FIO = ("Иванов Иван Иванович");
            Models.Work FirstWork = new Models.Work();
            FirstWork.Name = "Чебуречная";
            int year  = date.Year;
            int month = date.Month;

            ViewBag.Exp = date;
            ViewBag.Ex  = year;
            ViewBag.E   = month;

            return(View());
        }
Esempio n. 3
0
        public async Task <ResponseDto> CreateAsync(Models.Work model)
        {
            const string methodName = ClassName + "." + nameof(CreateAsync);

            var response = new ResponseDto();

            try
            {
                // TODO Make entity action here
                response.SetSuccess();
            }
            catch (Exception ex)
            {
                response.SetError(0, ex.Message, methodName, ResponseType.Error);
            }

            return(response);
        }
Esempio n. 4
0
 public void OnGet(long id)
 {
     WorkViewModel = DbHelper.GetFirst <Models.Work>(w => w.Id == id);
 }