public MouthCellViewModel(MouthCellModel mouthCellModel, CachedResourcesLoader cachedResourcesLoader)
 {
     this.mouthCellModel        = mouthCellModel;
     this.cachedResourcesLoader = cachedResourcesLoader;
 }
 public StickerCustomizationPopupViewModel(StickerCustomizationPopupModel stickerCustomizationPopupModel, CachedResourcesLoader cachedResourcesLoader, int selectedMouthId)
 {
     selectedMouthModel = new BehaviorSubject <MouthCellModel>(stickerCustomizationPopupModel.GetDataWithIndex(selectedMouthId));
     this.stickerCustomizationPopupModel = stickerCustomizationPopupModel;
     this.cachedResourcesLoader          = cachedResourcesLoader;
 }