public async Task <ActionResult <NhanVien> > Get(int manhanvien)
        {
            var response = await _repository.GetByMaNhanVien(manhanvien);

            if (response == null)
            {
                return(NotFound());
            }
            var auditTrailLog = new RequestCustomerLog()
            {
                Action    = "GET",
                log       = "Lấy Nhân Viên theo mã nhân viên trong table NhanVien",
                Timestamp = DateTime.Now
            };

            string text = auditTrailLog.Action + " | " + auditTrailLog.log + " | " + auditTrailLog.Timestamp;
            string path = @"D:\Thế giới di động\hddtRestfulAPI\log.txt";

            System.IO.File.AppendAllText(path, text + Environment.NewLine);

            return(response);
        }