public MapperFactoryConfig AddProfile(IMapperProfile profile) { if (profile is null) { throw new ArgumentNullException(nameof(profile)); } profiles.Add(profile); return(this); }
public UserService(IUnitOfWork uow, IMapperProfile mapperProfile, IEncodingService encoding) { _encodingService = encoding; _mapper = mapperProfile.GetMapper(); _unit = uow; }
public PlanePartService(IUnitOfWork uow, IMapperProfile mapperProfile) { _mapper = mapperProfile.GetMapper(); _unit = uow; }
public PlaneModelService(IUnitOfWork unitOfWork, IMapperProfile mapperProfile) { _unit = unitOfWork; _mapper = mapperProfile.GetMapper(); }