public async Task <NotificationTypeCrtVM> FetchByIdAsync(int Id) { var notificationType = await notificationTypeRepository.GetByIdAsync(Id); var result = Mapper.Map <NotificationTypeCrtVM>(notificationType); return(result); }