public async Task <Staff> Post(Staff staff) { if (ModelState.IsValid) { await StaffService.AddAsync(staff); } return(staff); }