public void Dispose() { mockRepo = null; realProfile = null; configuation = null; mapper = null; }
public MemberControllerTests() { mockRepo = new Mock <IMemberRepo>(); realProfile = new MembersProfile(); configuation = new MapperConfiguration(cfg => cfg.AddProfile(realProfile)); mapper = new Mapper(configuation); }