public ImageDimentionAttribute(int width, int height, ImageDimentionOption option)
 {
     this.width = width;
     this.height = height;
     this.imageDimentionOption = option;
 }
 public ImageDimentionAttribute(int width, int height, ImageDimentionOption option)
 {
     this.width  = width;
     this.height = height;
     this.imageDimentionOption = option;
 }
 public ImageDimentionAttribute(int width, int height)
 {
     this.width = width;
     this.height = height;
     this.imageDimentionOption = ImageDimentionOption.EqualTo;
 }
 public ImageDimentionAttribute(int width, int height)
 {
     this.width  = width;
     this.height = height;
     this.imageDimentionOption = ImageDimentionOption.EqualTo;
 }