public ComponentTypeMapperTest()
 {
     _componentTypeMapper = new ComponentTypeMapper();
 }
 /// <summary>
 /// Controller constructor
 /// </summary>
 /// <param name="bll"></param>
 public ComponentTypesController(IAppBLL bll)
 {
     _bll    = bll;
     _mapper = new ComponentTypeMapper();
 }
 public ComponentTypeRepository(AppDbContext dbContext) : base(dbContext,
                                                               new AppDALBaseMapper <ComponentType, ComponentTypeFull>())
 {
     _mapper = new ComponentTypeMapper();
 }